Scenario #5005: Create New Mailinglist As Global Admin

UseCase Subscribe Existing Person And Contact To Mailinglist => Mailinglist: first-gmbh-internal

Properties

Required

Given

name value
partnerPersonTradeName First GmbH
subscriberFamilyName Miller
subscriberGivenName Michael
subscriberEMailAddress michael.miller@example.org
mailingList first-gmbh-internal

Person: First GmbH

HTTP GET "/api/hs/office/persons?name=First+GmbH" \
  -H "Authorization: Bearer $HSADMINNG_JWT_BEARER" \
  `# {` \
  `#   "sub" : "uuid<hsh-alex_superuser>"` \
  `# }`
=> status: 200 OK 
[ {
  "uuid" : "20843a67-f6d5-415a-af9d-71319bb7df43", // Person: First GmbH
  "personType" : "LEGAL_PERSON",
  "tradeName" : "First GmbH",
  "salutation" : null,
  "title" : null,
  "givenName" : null,
  "familyName" : null
} ]

In production, data this query could result in multiple outputs. In that case, you have to find out which is the right one.

Person: Michael Miller

HTTP GET "/api/hs/office/persons?name=Miller" \
  -H "Authorization: Bearer $HSADMINNG_JWT_BEARER" \
  `# {` \
  `#   "sub" : "uuid<hsh-alex_superuser>"` \
  `# }`
=> status: 200 OK 
[ {
  "uuid" : "93d4b5cc-c436-4172-85c7-8a4b13af8a29", // Person: Michael Miller
  "personType" : "NATURAL_PERSON",
  "tradeName" : null,
  "salutation" : null,
  "title" : null,
  "givenName" : "Michael",
  "familyName" : "Miller"
} ]

In real scenarios there are most likely multiple results and you have to choose the right one.

Contact: michael.miller@example.org

HTTP GET "/api/hs/office/contacts?emailAddress=michael.miller@example.org" \
  -H "Authorization: Bearer $HSADMINNG_JWT_BEARER" \
  `# {` \
  `#   "sub" : "uuid<hsh-alex_superuser>"` \
  `# }`
=> status: 200 OK 
[ {
  "uuid" : "62cb7858-de45-4f26-91c5-d03afa083440", // Contact: michael.miller@example.org
  "caption" : "Michael Miller",
  "postalAddress" : { },
  "emailAddresses" : {
    "main" : "michael.miller@example.org"
  },
  "phoneNumbers" : { }
} ]

In real scenarios there are most likely multiple results and you have to choose the right one.

Subscribe Michael Miller to first-gmbh-internal

HTTP POST "/api/hs/office/relations" \
  -H "Authorization: Bearer $HSADMINNG_JWT_BEARER" \
  `# {` \
  `#   "sub" : "uuid<hsh-alex_superuser>"` \
  `# }` \
  <<EOF
{
  "type" : "SUBSCRIBER",
  "mark" : "first-gmbh-internal",
  "anchor.uuid" : "20843a67-f6d5-415a-af9d-71319bb7df43", // Person: First GmbH
  "holder.uuid" : "93d4b5cc-c436-4172-85c7-8a4b13af8a29", // Person: Michael Miller
  "contact.uuid" : "62cb7858-de45-4f26-91c5-d03afa083440" // Contact: michael.miller@example.org
}
EOF
=> status: 201 CREATED b5611d6f-8c68-46cf-9a76-5ca9d0d3c1d2

generated on 2026-08-10 04:42:28 for branch HEAD